Component org.nuxeo.ecm.platform.webapp.core.ExceptionHandlingContrib
In bundle org.nuxeo.ecm.webapp.core
Requirements
Resolution Order
659
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
- org.nuxeo.ecm.platform.webapp.core.ExceptionHandlingContrib--listener
- org.nuxeo.ecm.platform.webapp.core.ExceptionHandlingContrib--requestdump
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.ecm.platform.webapp.core.ExceptionHandlingContrib">
<require>
org.nuxeo.ecm.platform.web.common.exceptionhandling.service.ExceptionHandlingContrib
</require>
<!-- TODO: move this contrib and java classe in ui-web -->
<extension
target="org.nuxeo.ecm.platform.web.common.exceptionhandling.service.ExceptionHandlingService"
point="listener">
<listener class="org.nuxeo.ecm.webapp.shield.SeamExceptionHandlingListener" />
</extension>
<extension
target="org.nuxeo.ecm.platform.web.common.exceptionhandling.service.ExceptionHandlingService"
point="requestdump">
<requestdump
class="org.nuxeo.ecm.platform.web.common.exceptionhandling.service.DefaultRequestDumper">
<notListed>
<attribute>org.jboss.seam.international.messages</attribute>
</notListed>
</requestdump>
</extension>
</component>